home *** CD-ROM | disk | FTP | other *** search
/ Gekkan Dennou Club 145 / Gekkan Dennou Club - 2000.6 Vol. 145 (Japan).7z / Gekkan Dennou Club - 2000.6 Vol. 145 (Japan) (Track 1).bin / tools / sharp / xc2102i.lzh / XC2102.XDF / INCLUDE / ERROR.H < prev    next >
Text File  |  1992-03-03  |  824b  |  49 lines

  1. /*
  2.  * error.h X68k XC Compiler v2.10 Copyright 1990,91,92 SHARP/Hudson
  3.  */
  4. #ifndef    __ERROR_H
  5. #define    __ERROR_H
  6.  
  7. #define    EPERM    1
  8. #define    ENOENT    2
  9. #define    ESRCH    3
  10. #define    EINTR    4
  11. #define    EIO    5
  12. #define    ENXIO    6
  13. #define    E2BIG    7
  14. #define    ENOEXEC    8
  15. #define    EBADF    9
  16. #define    ECHILD    10
  17. #define    EAGAIN    11
  18. #define    ENOMEM    12
  19. #define    EACCES    13
  20. #define    EFAULT    14
  21. #define    ENOTBLK    15
  22. #define    EBUSY    16
  23. #define    EEXIST    17
  24. #define    EXDEV    18
  25. #define    ENODEV    19
  26. #define    ENOTDIR    20
  27. #define    EISDIR    21
  28. #define    EINVAL    22
  29. #define    ENFILE    23
  30. #define    EMFILE    24
  31. #define    ENOTTY    25
  32. #define    ETXTBSY    26
  33. #define    EFBIG    27
  34. #define    ENOSPC    28
  35. #define    ESPIPE    29
  36. #define    EROFS    30
  37. #define    EMLINK    31
  38. #define    EPIPE    32
  39. #define    EDOM    33
  40. #define    ERANGE    34
  41.  
  42. extern    volatile int    errno;
  43.  
  44. #ifndef    NULL
  45. #define    NULL    0
  46. #endif
  47.  
  48. #endif
  49.